home *** CD-ROM | disk | FTP | other *** search
/ CD ROM Paradise Collection 4 / CD ROM Paradise Collection 4 1995 Nov.iso / win / bookwn11.zip / PRINTDOC.BAT < prev    next >
DOS Batch File  |  1995-02-01  |  766b  |  27 lines

  1. @REM PRINTDOC.BAT; JLS 2/95
  2. @echo off
  3. if "%1"=="" goto default
  4. set loc=%1
  5. goto next
  6. :default
  7. set loc=lpt1
  8. :next
  9. ECHO Docs for Bookbild 1.1 for WP/Win 5.2 & 5.2+ will now print...
  10. ECHO ...
  11. ECHO The files REGISTER.DOC, BOOKWIN.DOC, and PRODUCTS.DOC will print
  12. ECHO to the printer %loc%.  Press any key to begin.
  13. ECHO .
  14. ECHO If you need to print to any other printer, press Ctrl-C now to stop
  15. ECHO this batch file, and restart PRINTDOC with a device name, like this:
  16. ECHO PRINTDOC LPT2
  17. ECHO or:
  18. ECHO PRINTDOC PRN
  19. ECHO .
  20. ECHO VENDINFO.DIZ contains sysop and vendor information, and may
  21. ECHO be examined with the READ_ME.BAT batch file provided.
  22. ECHO on  
  23. @PAUSE
  24. type register.doc >%loc%
  25. type bookwin.doc >>%loc%
  26. type products.doc >>%loc%
  27. @PAUSE